/* Базові стилі */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: #f9f9f9;
  color: #0b2250;
  line-height: 1.6;
}

/* Хедер */
.header {
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  padding: 20px 0;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 0px 20px;
  /* Додано px */
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.logo img {
  width: 180px;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-list a {
  text-decoration: none;
  color: #001e5b;
  font-size: 18px;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-list a:hover {
  color: #eacb6c;
}

/* Контейнер */
.main-container {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  gap: 60px;
  flex-wrap: wrap;
}

/* Ліва колонка */
.left-column {
  flex: 2;
  min-width: 280px;
}

.left-column h1 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #001e5b;
}

.subtitle {
  background-color: #fff3d6;
  padding: 15px 20px;
  margin-bottom: 30px;
  font-size: 17px;
  border-left: 4px solid #eacb6c;
  border-radius: 4px;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-block h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #001e5b;
}

.contact-block p,
.contact-block a {
  font-size: 16px;
  color: #333;
}

.contact-block a {
  color: #295fd2;
  text-decoration: none;
}

.contact-block a:hover {
  text-decoration: underline;
}


















.person-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  padding: 0;
  width: 320px;
  text-align: left;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

/* Анімація при наведенні */
.person-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}




















.ael-people {
  background-color: #ffffff; /* Білий фон на всю ширину */
  padding: 60px 20px;
  width: 100%;
}

.people-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.person-card {
  background-color: #ffffff; /* Білий фон картки */
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  padding: 0;
  width: 320px;
  text-align: left;
  overflow: hidden;
}

.person-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.person-card h3 {
  font-size: 20px;
  color: #001e5b;
  margin: 15px 20px 5px;
}

.person-card p {
  font-size: 15px;
  color: #333;
  margin: 4px 20px;
}

.person-card a {
  color: #295fd2;
  text-decoration: none;
}

.person-card a:hover {
  text-decoration: underline;
}

.linkedin-icon {
  width: 20px;
  height: 20px;
  margin: 10px 20px 20px;
}

.card-img-top {
  width: 100%;
  height: auto;
  object-fit: cover;
}


.card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: white; /* білий фон картки, а не сторінки */
  border: none;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}


.card-body {
  display: flex;
  flex-direction: column;
  gap: 1rem; /* відступ між блоками */
}

.info-block {
  border-bottom: 1px solid #eee;
  padding-bottom: 0.5rem;
}

.contact-block {
  font-size: 0.95rem;
  color: #333;
}
































.footer {
  background-color: #0c1c3d;
  color: #fff;
  font-family: sans-serif;
  padding: 40px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left {
  max-width: 600px;
}

.footer-left .logo {
  height: 80px;
  margin-bottom: 20px;
}

.footer-left p {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}

.footer-right {
  display: flex;
  align-items: center;
}

.linkedin-link {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.linkedin-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.footer-nav {
  text-align: center;
  margin: 30px 0 10px;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid #22314f;
  margin-top: 20px;
  padding-top: 20px;
  text-align: center;
  color: #888;
  font-size: 13px;
}

.footer-links {
  margin-top: 10px;
}

.footer-links a {
  color: #bbb;
  margin: 0 10px;
  text-decoration: none;
  font-size: 13px;
}

.footer-links a:hover {
  text-decoration: underline;
}